home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / doc_browsable.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  76 lines

  1. #
  2. # Copyright 2000 by Hendrik Scholz <hendrik@scholz.net>
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(10056);
  8.  script_bugtraq_id(318);
  9.  script_version ("$Revision: 1.17 $");
  10.  script_cve_id("CVE-1999-0678");
  11.  name["english"] = "/doc directory browsable ?";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "The /doc directory is browsable.
  15. /doc shows the content of the /usr/doc directory and therefore it shows which programs and - important! - the version of the installed programs.
  16.  
  17. Solution : Use access restrictions for the /doc directory.
  18. If you use Apache you might use this in your access.conf:
  19.  
  20.  <Directory /usr/doc>
  21.  AllowOverride None
  22.  order deny,allow
  23.  deny from all
  24.  allow from localhost
  25.  </Directory>
  26.  
  27. Risk factor : High";
  28.  
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Is /doc browsable ?";
  33.  
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2000 Hendrik Scholz");
  40.  
  41.  family["english"] = "CGI abuses";
  42.  script_family(english:family["english"]);
  43.  
  44.  script_dependencie("find_service.nes");
  45.  script_require_ports("Services/www", 80);
  46.  exit(0);
  47. }
  48.  
  49. #
  50. # The script code starts here
  51.  
  52. include("http_func.inc");
  53.  
  54. port = get_http_port(default:80);
  55.  
  56. if(get_port_state(port))
  57. {
  58.  data = http_get(item:"/doc/", port:port);
  59.  soc = http_open_socket(port);
  60.  if(soc)
  61.  {
  62.   send(socket:soc, data:data);
  63.   code = recv_line(socket:soc, length:1024);
  64.   buf = http_recv(socket:soc);
  65.   buf = tolower(buf);
  66.   must_see = "index of /doc";
  67.  
  68.   if((ereg(string:code, pattern:"^HTTP/[0-9]\.[0-9] 200 "))&&(must_see >< buf)){
  69.         security_warning(port);
  70.     set_kb_item(name:"www/doc_browseable", value:TRUE);
  71.   }
  72.   http_close_socket(soc);
  73.  }
  74. }
  75.  
  76.